home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / t_unix / j109lxa4.tar / mailfor.h < prev    next >
C/C++ Source or Header  |  1994-06-04  |  500b  |  22 lines

  1. /* Include needed for extended bbs support - WG7J */
  2. #ifndef _MAILFOR_H
  3. #define _MAILFOR_H
  4.  
  5. #ifndef _AX25_H
  6. #include "ax25.h"
  7. #endif
  8.  
  9. /*List of bbses we forward to, to check the R: lines for */
  10. #define FWDBBSLEN 9 /* call + optional ssid, eg. "KB7BHF-15" */
  11. #define NUMFWDBBS 8 /* Check for 8 bbs's max (arbitrary !) */
  12.  
  13. /* In mailfor.c */
  14. extern char MyFwds[][FWDBBSLEN+1];
  15. extern int Numfwds;
  16. extern int Checklock;
  17. extern int Rreturn;
  18. extern int Rfwdcheck;
  19. extern int Rdate;
  20.  
  21. #endif /*_MAILFOR_H*/
  22.